home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / mig / dist / write.h < prev   
Encoding:
C/C++ Source or Header  |  1991-08-29  |  2.2 KB  |  68 lines

  1. /* 
  2.  * Mach Operating System
  3.  * Copyright (c) 1991,1990 Carnegie Mellon University
  4.  * All Rights Reserved.
  5.  * 
  6.  * Permission to use, copy, modify and distribute this software and its
  7.  * documentation is hereby granted, provided that both the copyright
  8.  * notice and this permission notice appear in all copies of the
  9.  * software, derivative works or modified versions, and any portions
  10.  * thereof, and that both notices appear in supporting documentation.
  11.  * 
  12.  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS 
  13.  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
  14.  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  15.  * 
  16.  * Carnegie Mellon requests users of this software to return to
  17.  * 
  18.  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
  19.  *  School of Computer Science
  20.  *  Carnegie Mellon University
  21.  *  Pittsburgh PA 15213-3890
  22.  * 
  23.  * any improvements or extensions that they make and grant Carnegie the
  24.  * rights to redistribute these changes.
  25.  */
  26. /*
  27.  * HISTORY
  28.  * $Log:    write.h,v $
  29.  * Revision 2.5  91/08/28  11:17:39  jsb
  30.  *     Removed TrapRoutine support.
  31.  *     [91/08/12            rpd]
  32.  * 
  33.  * Revision 2.4  91/06/25  10:32:55  rpd
  34.  *     Changed WriteHeader to WriteUserHeader.
  35.  *     Added WriteServerHeader.
  36.  *     [91/05/23            rpd]
  37.  * 
  38.  * Revision 2.3  91/02/05  17:56:38  mrt
  39.  *     Changed to new Mach copyright
  40.  *     [91/02/01  17:56:55  mrt]
  41.  * 
  42.  * Revision 2.2  90/06/02  15:06:20  rpd
  43.  *     Created for new IPC.
  44.  *     [90/03/26  21:15:16  rpd]
  45.  * 
  46.  * 07-Apr-89  Richard Draves (rpd) at Carnegie-Mellon University
  47.  *    Extensive revamping.  Added polymorphic arguments.
  48.  *    Allow multiple variable-sized inline arguments in messages.
  49.  *
  50.  * 27-May-87  Richard Draves (rpd) at Carnegie-Mellon University
  51.  *    Created.
  52.  */
  53.  
  54. #ifndef    _WRITE_H
  55. #define    _WRITE_H
  56.  
  57. #include <stdio.h>
  58. #include "statement.h"
  59.  
  60. extern void WriteUserHeader(/* FILE *file, statement_t *stats */);
  61. extern void WriteServerHeader(/* FILE *file, statement_t *stats */);
  62. extern void WriteInternalHeader(/* FILE *file, statement_t *stats */);
  63. extern void WriteUser(/* FILE *file, statement_t *stats */);
  64. extern void WriteUserIndividual(/* statement_t *stats */);
  65. extern void WriteServer(/* FILE *file, statement_t *stats */);
  66.  
  67. #endif    _WRITE_H
  68.